home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00129.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  601 b   |  28 lines

  1. on exitFrame
  2.   global spriteloo
  3.   if rollOver(3) then
  4.     set the cursor of sprite 3 to [565, 566]
  5.   end if
  6.   go(the frame)
  7. end
  8.  
  9. on keyDown
  10.   set moviemovie to the castNum of sprite 3
  11.   set the sound of cast moviemovie to 0
  12.   if the keyCode = 123 then
  13.     set the movieRate of sprite 3 to -1
  14.   else
  15.     if the keyCode = 124 then
  16.       set the movieRate of sprite 3 to 1
  17.     end if
  18.   end if
  19. end
  20.  
  21. on keyUp
  22.   set moviemovie to the castNum of sprite 3
  23.   set the sound of cast moviemovie to 0
  24.   if ((the keyCode = 123) or (the keyCode = 124)) and 3 then
  25.     set the movieRate of sprite 3 to 0
  26.   end if
  27. end
  28.